/* Service Type Selector */
.service-selector-container {
    display: flex;
    gap: 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 8px;
}

.selector-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

.vertical-divider {
    width: 1px;
    background: var(--glass-border);
    margin: 0 8px;
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
}

.type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.type-card.active {
    background: rgba(139, 92, 246, 0.15);
    /* Primary color tint */
    border-color: var(--primary-500);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Glow effect for active card */
.type-card.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    transition: transform 0.2s;
}

.type-card:hover .card-icon {
    transform: scale(1.1);
}

.card-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    transition: color 0.2s;
}

.type-card.active .card-label {
    color: var(--white);
    font-weight: 600;
}