/* استایل صفحه رده‌های سنی */
.age-groups-header {
    text-align: center;
    margin-bottom: 50px;
}

.heading {
    font-size: 36px;
    color: #1a472a;
    display: block;
    margin-bottom: 15px;
}

.heading .mx {
    color: #dd4b39;
}

.age-groups-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* گرید رده‌های سنی */
.age-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* کارت رده سنی */
.age-group-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 71, 42, 0.1);
}

.age-group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 71, 42, 0.15);
    border-color: rgba(26, 71, 42, 0.3);
}

.age-group-link {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}

/* آیکون */
.age-group-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a472a, #2d6a3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.age-group-icon i {
    font-size: 28px;
    color: white;
}

/* اطلاعات */
.age-group-info {
    flex: 1;
}

.age-group-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 8px;
}

.age-group-stats {
    display: flex;
    gap: 15px;
}

.age-group-stats span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.age-group-stats i {
    color: #2d6a3b;
    font-size: 12px;
}

/* فلش */
.age-group-arrow {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.age-group-arrow i {
    color: #1a472a;
    font-size: 16px;
}

.age-group-card:hover .age-group-arrow {
    background: #1a472a;
    transform: translateX(-5px);
}

.age-group-card:hover .age-group-arrow i {
    color: white;
}

/* حالت خالی */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 20px;
}

.empty-state i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.empty-state h4 {
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .heading {
        font-size: 28px;
    }
    
    .age-groups-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .age-groups-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .age-group-link {
        padding: 15px;
    }
    
    .age-group-icon {
        width: 50px;
        height: 50px;
    }
    
    .age-group-icon i {
        font-size: 24px;
    }
    
    .age-group-name {
        font-size: 16px;
    }
}