.closed-page-container {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.closed-card {
    position: relative;
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    border-radius: 25px;
    padding: 45px 40px;
    text-align: center;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    border-top: 6px solid #006D36;
    overflow: hidden;
}

/* Décoration */
.closed-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(0, 109, 54, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -70px;
}

.closed-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(215, 38, 43, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -60px;
}

/* Logo */
.closed-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Icon */
.closed-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff1f1;
    color: #D7262B;

    font-size: 28px;
}

/* Titre arabe */
.closed-card h2 {
    color: #006D36;
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 15px;
}

/* Message arabe */
.closed-message-ar {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Séparateur */
.closed-separator {
    width: 80px;
    height: 3px;
    background: #D7262B;
    margin: 20px auto;
    border-radius: 10px;
}

/* Français */
.closed-message-fr {
    color: #1E7886;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 600;
}

/* Information */
.closed-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin: 30px auto 25px;
    padding: 14px 20px;

    max-width: 650px;

    background: #f0f8f5;
    border-right: 4px solid #006D36;

    border-radius: 10px;

    color: #004D26;
    font-size: 0.95rem;
}

.closed-info i {
    color: #006D36;
    font-size: 20px;
}

/* Footer card */
.closed-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding-top: 20px;

    border-top: 1px solid #eee;

    color: #777;
    font-size: 0.85rem;
}

.closed-footer i {
    color: #006D36;
}

.closed-footer .separator {
    color: #D7262B;
}

/* Mobile */
@media (max-width: 768px) {

    .closed-page-container {
        min-height: 70vh;
        padding: 25px 10px;
    }

    .closed-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .closed-logo img {
        width: 100px;
        height: 100px;
    }

    .closed-card h2 {
        font-size: 1.45rem;
        line-height: 1.8;
    }

    .closed-message-ar,
    .closed-message-fr {
        font-size: 0.95rem;
    }

    .closed-info {
        font-size: 0.85rem;
        padding: 12px;
    }

    .closed-footer {
        flex-direction: column;
        gap: 5px;
    }

    .closed-footer .separator {
        display: none;
    }
}