.service-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(212, 165, 200, 0.12);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-rose);
    box-shadow: 0 20px 60px rgba(212, 165, 200, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(232, 180, 200, 0.2), rgba(212, 165, 200, 0.2));
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-rose), var(--secondary-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.service-features .badge {
    background: linear-gradient(135deg, var(--soft-cream), var(--soft-gray));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
}

.service-details {
    background: rgba(232, 180, 200, 0.05);
    padding: 1rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.service-details i {
    color: var(--primary-rose);
    margin-right: 0.5rem;
}

.btn-outline-elegant.w-100 {
    margin-top: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
    
    .service-icon {
        font-size: 2.8rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .service-features .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}