/* Service Selector Styles */

.service-selector-container {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.step-header .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.step-header .section-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.7;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #9ACD32;
    border-color: #9ACD32;
    color: #fff;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: #6c757d;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: #000;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #28a745;
}

.progress-line {
    width: 100px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 1rem;
    align-self: flex-start;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.progress-line.active {
    background: #9ACD32;
}

/* Form Styles */
.selector-section {
    margin-bottom: 2rem;
}

.selector-section.hidden {
    display: none;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-item {
    position: relative;
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-item label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.radio-item label:hover {
    border-color: var(--black);
}

.radio-item input[type="radio"]:checked + label {
    border-color: var(--black);
    background: #f8f9fa;
}

.radio-title {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.radio-description {
    color: #666;
    font-size: 0.9rem;
}

/* Service Cards */
.service-card, .path-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.service-card:hover, .path-card:hover {
    border-color: #9ACD32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.15);
}

.service-card.selected, .path-card.selected {
    border-color: #9ACD32;
    background: linear-gradient(145deg, #f8fff0, #ffffff);
    box-shadow: 0 6px 20px rgba(154, 205, 50, 0.2);
    transform: translateY(-3px);
}

.service-card.selected::before, .path-card.selected::before {
    content: "✓";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #9ACD32;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Path Card Specific Styles */
.path-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.path-includes {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.path-includes h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    font-size: 0.85rem;
    color: #666;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1rem;
}

.includes-list li::before {
    content: "•";
    color: #9ACD32;
    position: absolute;
    left: 0;
}

.best-for {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.best-for-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ACD32;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.best-for-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: #333;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* Alerts */
.alert {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer Notice */
.footer-notice {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

.footer-notice p {
    margin-bottom: 0.5rem;
}

/* Recommendation Notice */
.recommendation-notice {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #155724;
}

.recommendation-notice.hidden {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .progress-indicator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-line {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .service-selector-container {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .radio-item label {
        padding: 1rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}