/* LINK CEPAT ICON */
.quick-link-card {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e5b73, #d5c58a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

.quick-link-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 91, 115, 0.2);
}

.quick-link-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.quick-link-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0 15px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-link-card .btn {
    width: 100%;
    background:#0e5b73;
    color:white;
}