.lab-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lab-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 50, 94, 0.12);
}

.lab-card__icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(33, 50, 94, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.lab-card__icon-wrapper i {
    color: #21325e;
    transition: color 0.4s ease;
}

.lab-card:hover .lab-card__icon-wrapper {
    background: #21325e;
    transform: rotate(10deg);
}

.lab-card:hover .lab-card__icon-wrapper i {
    color: #fff !important;
}

.lab-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #21325e;
    margin-bottom: 10px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-card__code {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f3f9;
    color: #21325e;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lab-card__footer {
    margin-top: auto;
    padding-top: 20px;
}

.btn-lab-detail {
    background: #21325e;
    color: #fff;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-lab-detail:hover {
    background: #1a284a;
    color: #fff;
    box-shadow: 0 5px 15px rgba(33, 50, 94, 0.3);
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header__subtitle {
    color: #21325e;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.widget-services {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f3f9;
}

.widget-services .widget__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #21325e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f3f9;
    position: relative;
}

.widget-services .widget__title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #21325e;
}

.widget-services .widget-content ul {
    padding: 0;
    margin: 0;
}

.widget-services .widget-content ul li {
    list-style: none;
    margin-bottom: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.widget-services .widget-content ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-services .widget-content ul li:hover {
    background: #f8f9fa;
    border-color: #eee;
}

.widget-services .widget-content ul li.active {
    background: rgba(33, 50, 94, 0.05);
    border-left: 4px solid #21325e;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.widget-services .widget-content ul li.active a {
    color: #21325e;
    font-weight: 700;
}

.widget-services .widget-content ul li i {
    font-size: 0.75rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.widget-services .widget-content ul li:hover i,
.widget-services .widget-content ul li.active i {
    color: #21325e;
    transform: translateX(3px);
}

.widget-help {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    margin-top: 30px;
}

.widget-schedule {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f3f9;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.widget-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #21cdc0;
}

.widget-schedule .widget__icon {
    width: 50px;
    height: 50px;
    background: rgba(33, 205, 192, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #21cdc0;
    font-size: 1.5rem;
}

.widget-schedule .widget__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #21325e;
    margin-bottom: 10px;
    display: block;
}

.widget-schedule .schedule-content {
    font-size: 0.95rem;
    color: #555;
    font-weight: 700;
    line-height: 1.5;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px dashed #ddd;
}
