.elementor-11620 .elementor-element.elementor-element-8205d92{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-b229af6 *//* VARIABLES */
    :root {
        --sq-dark: #121212;
        --sq-line: rgba(255, 255, 255, 0.15);
        --sq-orange: #F39200;
        --sq-text: #E0E0E0;
    }

    /* CONTAINER PRINCIPAL */
    .footer-arch {
        background-color: var(--sq-dark);
        color: var(--sq-text);
        padding: 0;
        display: flex; flex-direction: column;
        width: 100%;
        font-family: 'Inter', sans-serif;
    }

    /* Projet*/
    .arch-cta {
        border-top: 1px solid var(--sq-line);
        border-bottom: 1px solid var(--sq-line);
        position: relative; overflow: hidden;
    }

    .arch-cta a {
        display: block;
        padding: 80px 5%;
        font-family: 'Poppins', sans-serif;
        font-size: 3vw; 
        font-weight: 800;
        text-transform: uppercase;
        color: white; text-decoration: none;
        text-align: center;
        transition: all 0.5s ease;
        position: relative; z-index: 2;
        letter-spacing:5px;
    }
    
    .arch-apply-btn {
    background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
}

.arch-apply-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
}

    
    .arch-cta::before {
        content:''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
        background: var(--sq-orange); transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1;
    }
    .arch-cta:hover::before { width: 100%; }
    .arch-cta:hover a { color: black; letter-spacing: 10px; }


    /* Le conteneur*/
    .arch-grid {
        display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
        width: 100%;
    }

    .arch-col {
        padding: 40px;
        border-right: 1px solid var(--sq-line);
        display: flex; flex-direction: column;
    }
    .arch-col:last-child { border-right: none; }

    .arch-label {
        font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 25px;
    }

    .arch-list { list-style: none; padding: 0; margin: 0; }
    .arch-list li { margin-bottom: 12px; }
    .arch-list a {
        color: var(--sq-text); text-decoration: none; font-size: 1rem; transition: 0.3s;
        display: block;
    }
    .arch-list a:hover { color: var(--sq-orange); padding-left: 5px; }

    .arch-address { font-size: 1.1rem; line-height: 1.6; font-weight: 600; color: white; }


    /* ligne tout en bas */
    .arch-bottom {
        border-top: 1px solid var(--sq-line);
        padding: 20px 40px;
        display: flex; justify-content: space-between; align-items: center;
        font-size: 0.85rem; color: #888;
    }

    /* RESPONSIVE */
    @media(max-width: 1024px) {
        .arch-grid { grid-template-columns: 1fr 1fr; }
        .arch-col { border-bottom: 1px solid var(--sq-line); border-right: none; }
        .arch-col:nth-child(odd) { border-right: 1px solid var(--sq-line); } 
        .arch-cta a { font-size: 6vw; }
    }

    @media(max-width: 600px) {
        .arch-grid { grid-template-columns: 1fr; }
        .arch-col { border-right: none !important; }
        .arch-bottom { flex-direction: column; gap: 15px; text-align: center; }
        .arch-cta a { font-size: 11vw; padding: 50px 20px; }
    }
    
    
    
    
.arch-legal-link {
    color: inherit;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease;
    position: relative;
}

.arch-legal-link:last-child {
    margin-right: 0;
}

.arch-legal-link:hover {
    color: var(--sq-orange);
    
}

.arch-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sq-orange);
    transition: width 0.3s ease;
}

.arch-legal-link:hover::after {
    width: 100%;
}

/* boutons d'actions */
.arch-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin: 0 auto;
    max-width: 1200px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.arch-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.arch-action-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.arch-action-btn:hover {
    background: var(--sq-orange);
    border-color: var(--sq-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
    color: white;
}

.arch-action-btn:hover i {
    transform: scale(1.1);
}

/* Responsive pour les boutons */
@media (max-width: 768px) {
    .arch-actions {
        flex-direction: column;
    }
    
    .arch-action-btn {
        width: 100%;
    }

}



/* Zone des boutons footer */
.arch-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 45px auto 35px;
    width: min(720px, 100%);
}

/* Les deux boutons du haut sur la même ligne */
.arch-actions-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

/* Style commun des boutons */
.arch-action-btn {
    min-height: 56px;
    width: 100%;
    padding:  24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Square Assistance en orange Square Info */
.arch-assistance-btn {
    background: linear-gradient(135deg, #ff7a1a, #ff9f1c) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 35px rgba(255, 122, 26, 0.28);
}

/* Postuler en bleu */
.arch-apply-btn {
    background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.32);
}

/* Espace jeux en dessous */
.arch-game-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Hover */
.arch-action-btn:hover {
    transform: translateY(-4px);
}

.arch-assistance-btn:hover {
    box-shadow: 0 18px 45px rgba(255, 122, 26, 0.42);
}

.arch-apply-btn:hover {
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
}

.arch-game-btn:hover {
    background: rgba(255, 255, 255, 0.14) !important;
}

/* Responsive téléphone */
@media (max-width: 650px) {
    .arch-actions-top {
        grid-template-columns: 1fr;
    }

    .arch-action-btn {
        white-space: normal;
        text-align: center;
    }
}/* End custom CSS */