.services {
    background-size: cover;
    background-position: center;
}

.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-box {
    flex: 1 1 30rem;
    background: var(--bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    box-shadow: 0 0.1rem 0.5rem var(--shadow-color);
    text-align: center;
    border-top: 0.6rem solid var(--main-color);
    border-bottom: 0.6rem solid var(--main-color);
    transition: all 0.5s ease;
    position: relative;
    min-width: 300px;
}

.service-box.featured {
    transform: translateY(-20px);
    border-color: var(--success-color);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}

.service-box h3 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2.8rem;
    color: var(--main-color);
    font-weight: 700;
    margin: 1rem 0;
}

.service-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 2rem 0;
}

.service-box ul li {
    font-size: 1.6rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--secondary-color);
}

.service-box ul li:last-child {
    border-bottom: none;
}

.service-box ul li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--success-color);
    font-weight: bold;
}

.service-box:hover,
.service-box.active {
    transform: scale(1.03);
    border-color: var(--info-color);
    box-shadow: 0 1rem 2rem var(--shadow-color);
}

.service-box.featured:hover {
    border-color: var(--success-color);
}


@media (max-width: 660px){
    .service-box.featured{ margin-top: 5rem; }
}