*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fa;
}

.members-container{
    width:95%;
    max-width:1400px;
    margin:30px auto;
}

.members-container h1{
    text-align:center;
    margin-bottom:25px;
    color:#222;
}

.members-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.member-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,0.1);
    transition:0.3s;
}

.member-card:hover{
    transform:translateY(-5px);
}

.member-photo{
    width:100%;
    height:220px;
}

.member-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.member-info{
    padding:15px;
}

.member-info h3{
    margin-bottom:5px;
    color:#222;
}

.member-type{
    display:inline-block;
    background:#28a745;
    color:#fff;
    padding:4px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:10px;
}

.member-info p{
    margin:10px 0;
    color:#555;
    font-size:14px;
}

.member-info i{
    color:#28a745;
    width:20px;
}

.contact-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    background:#28a745;
    color:white;
    padding:10px;
    border-radius:6px;
    margin-top:15px;
    font-weight:bold;
}

.contact-btn:hover{
    background:#218838;
}

.members-toolbar{
    display:flex;
    gap:10px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.members-toolbar input{
    flex:1;
    min-width:250px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.members-toolbar select{
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.pagination{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    margin-top:30px;
}

.pagination a{
    text-decoration:none;
    padding:10px 15px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    color:#333;
}

.pagination a:hover{
    background:#28a745;
    color:#fff;
}

.active-page{
    background:#28a745 !important;
    color:#fff !important;
}


.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    margin-bottom:25px;
}

.stat-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-3px);
}

.stat-icon{
    font-size:32px;
    color:#28a745;
    margin-bottom:10px;
}

.stat-number{
    font-size:28px;
    font-weight:700;
    color:#28a745;
}

.stat-label{
    margin-top:5px;
    color:#666;
    font-size:14px;
}

/*====≠=======================================*/

.featured-section{
    margin-bottom:30px;
}

.featured-section h2{
    margin-bottom:15px;
}

.featured-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    padding-bottom:10px;
}

.featured-card{
    min-width:220px;
    background:#fff;
    border-radius:12px;
    padding:15px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.featured-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
}

.featured-card a{
    display:inline-block;
    margin-top:10px;
    padding:8px 14px;
    background:#28a745;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}

.featured-badge{
    display:inline-block;
    background:gold;
    color:#000;
    font-weight:bold;
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:10px;
}

/*============================================*/
.states-section{
    margin:30px 0;
}

.states-section h2{
    margin-bottom:15px;
}

.states-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:12px;
}

.state-card{
    background:#fff;
    border-radius:10px;
    padding:15px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.state-card:hover{
    transform:translateY(-3px);
}

.state-name{
    font-size:18px;
    font-weight:600;
    color:#222;
}

.state-members{
    margin-top:5px;
    color:#28a745;
    font-weight:700;
}

/*=======================================*/
.progress-bar{
    width:100%;
    height:8px;
    background:#eee;
    border-radius:20px;
    margin-top:8px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    background:#28a745;
}

/*=========================================*/
.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:10px 16px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}
.whatsapp-btn{
    display:flex;
    width:100%;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 4px 10px rgba(37,211,102,.3);
}

.whatsapp-btn i{
    font-size:16px;
}

