.service-premium-card {
    border-radius: 20px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: .7s;
}

.service-premium-card:hover::before {
    left: 100%;
}

.service-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-icon-premium {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--primary);
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-premium-card:hover .service-icon-premium {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.service-list span {
    padding: 10px 16px;
    background: #f5f5f5;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.service-premium-card:hover .service-list span {
    background: rgba(0, 0, 0, 0.05);
}


/* CTA BUTTON */

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), #c87412);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12), 0 6px 18px rgba(255, 140, 0, .18);
    transition: .35s ease;
}

.service-cta-btn i {
    transition: .35s ease;
}

.service-cta-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16), 0 10px 24px rgba(255, 140, 0, .25);
}

.service-cta-btn:hover i {
    transform: translateX(4px);
}

.service-premium-card {
    display: flex;
    flex-direction: column;
}

.service-list {
    flex-grow: 1;
}