/* Services Page Specific Styles */

.service-card {
    background: var(--bg-main);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.service-card.highlighted-card {
    background: var(--primary-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
}

.service-card.highlighted-card .service-icon {
    background: var(--white);
    color: var(--secondary-color);
}

.service-pricing {
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 15px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.service-features li::before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}
/* Disable the gradient overlay that covers the icon */
.service-icon::before {
    display: none !important;
}

/* Force the icon and its background to remain static on hover */
.service-card:hover .service-icon {
    background: var(--primary-light) !important;
    color: var(--primary-dark) !important;
    transform: none !important;
    animation: none !important;
}
.service-card:hover .service-icon i {
    color: var(--primary-dark) !important;
}
