/* Service Selection Cards */
.marina-service-selection {
    padding: 20px 0;
}

.marina-service-selection h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.marina-service-intro {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 30px;
}

.marina-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.marina-service-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.marina-service-card:hover {
    border-color: var(--marina-primary-color, #2563eb);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.marina-service-card.selected {
    border-color: var(--marina-primary-color, #2563eb);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.marina-service-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--marina-primary-color, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.marina-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.marina-service-card:hover .marina-service-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: scale(1.05);
}

.marina-service-card.selected .marina-service-icon {
    background: linear-gradient(135deg, var(--marina-primary-color, #2563eb) 0%, #1d4ed8 100%);
}

.marina-service-icon svg {
    stroke: var(--marina-primary-color, #2563eb);
    transition: all 0.3s ease;
}

.marina-service-card.selected .marina-service-icon svg {
    stroke: white;
}

.marina-service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.marina-service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .marina-service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .marina-service-card {
        padding: 20px;
    }
    
    .marina-service-icon {
        width: 70px;
        height: 70px;
    }
    
    .marina-service-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Treatment Plan Result Styles */
.marina-treatment-plan {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

.marina-treatment-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.marina-treatment-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.marina-treatment-header .service-type {
    display: inline-block;
    background: var(--marina-primary-color, #2563eb);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marina-treatment-section {
    margin-bottom: 24px;
}

.marina-treatment-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marina-treatment-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--marina-primary-color, #2563eb);
    border-radius: 2px;
}

.marina-treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.marina-treatment-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.marina-treatment-item .label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
}

.marina-treatment-item .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--marina-primary-color, #2563eb);
}

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

.marina-treatment-list li {
    padding: 12px 16px;
    background: #f8fafc;
    border-left: 3px solid var(--marina-primary-color, #2563eb);
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #334155;
}

.marina-treatment-list li strong {
    color: #1e293b;
    font-weight: 600;
}

.marina-disclaimer {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.marina-disclaimer p {
    margin: 0;
    font-size: 13px;
    color: #92400e;
    line-height: 1.6;
}

.marina-disclaimer strong {
    color: #78350f;
}

.marina-result-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.marina-result-actions .marina-btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .marina-treatment-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .marina-result-actions {
        flex-direction: column;
    }
    
    .marina-result-actions .marina-btn {
        width: 100%;
    }
}
