/**
 * Multilingual Enterprise Grid - Design System Bosse
 */

.lang-grid-block {
    overflow: hidden;
    position: relative;
    padding: 60px 40px !important;
}

.lang-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Lang Card */
.lang-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.lang-card:hover {
    transform: translateY(-10px);
    border-color: #008080;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Status Badge Top Right */
.lang-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-status-badge.principale { background: #8e44ad; }
.lang-status-badge.populaire { background: #1abc9c; }
.lang-status-badge.nouveau { background: #e67e22; }
.lang-status-badge.prochaine { background: #795548; }

/* Flag Circle */
.flag-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.lang-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.lang-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 48px;
}

/* Select Button */
.lang-select-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #008080;
    border-radius: 50px;
    background: transparent;
    color: #008080;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-select-btn:hover {
    background: #008080;
    color: #fff;
}

.lang-select-btn.selected {
    background: #eafffa;
    color: #008080;
    border-color: #008080;
}

.lang-select-btn.selected i {
    background: #008080;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enterprise Footer Note */
.enterprise-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.note-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f8fcfd;
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid #e0f2f1;
    font-weight: 700;
    color: #006064;
}

.note-box i { font-size: 20px; color: #00838f; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .lang-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lang-grid-container {
        grid-template-columns: 1fr;
    }
    
    .lang-grid-block {
        padding: 40px 20px !important;
    }
}
