.services-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.feature-pill {
    border: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    cursor: default;
}

.badge-wrapper .badge {
    background: var(--gold) !important;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .service-card {
        text-align: center;
    }
    
    .service-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1rem !important;
        margin-right: 0 !important;
    }
}